home *** CD-ROM | disk | FTP | other *** search
/ Data Base of the Video Yearbook 1995 / Data Base of the Video Yearbook 1995 - Disc 1.iso / cosmos / pack2.dir / 00002.ls < prev    next >
Encoding:
Text File  |  1995-12-30  |  588 b   |  25 lines

  1. on mouseDown
  2.   set h to the locH of sprite clickOn()
  3.   set v to the locV of sprite clickOn()
  4.   repeat while the stillDown
  5.     if rollOver(clickOn()) then
  6.       set the locH of sprite clickOn() to h + 5
  7.       set the locV of sprite clickOn() to v + 5
  8.     else
  9.       set the locH of sprite clickOn() to h
  10.       set the locV of sprite clickOn() to v
  11.     end if
  12.     updateStage()
  13.   end repeat
  14.   set the locH of sprite clickOn() to h
  15.   set the locV of sprite clickOn() to v
  16.   updateStage()
  17. end
  18.  
  19. on mouseUp
  20.   global mkname, dname
  21.   set dname to "PACK2"
  22.   set mkname to "P"
  23.   go(1, "PANIC")
  24. end
  25.